AppleWin/source/frontends/common2/utils.h
Andrea Odetti 3b917e93be common2: add namespace and reformat everything with space over tabs.
This makes it "possible" to use other editors (than emacs).

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-02-25 16:04:50 +00:00

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();
};
}