16 lines
190 B
C++
16 lines
190 B
C++
#pragma once
|
|
|
|
#ifndef bind_handler_h
|
|
#define bind_handler_h
|
|
|
|
#include "GaussFit.h"
|
|
#include "FileHandler.h"
|
|
|
|
class BindHandler {
|
|
public:
|
|
BindHandler();
|
|
~BindHandler() {};
|
|
};
|
|
|
|
#endif
|