3b917e93be
This makes it "possible" to use other editors (than emacs). Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
17 lines
220 B
C++
17 lines
220 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace common2
|
|
{
|
|
|
|
void setSnapshotFilename(const std::string & filename, const bool load);
|
|
|
|
class Initialisation
|
|
{
|
|
public:
|
|
Initialisation();
|
|
~Initialisation();
|
|
};
|
|
|
|
}
|