13 lines
302 B
C++
13 lines
302 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace common2
|
|
{
|
|
struct Geometry;
|
|
|
|
void setSnapshotFilename(const std::string & filename);
|
|
|
|
void loadGeometryFromRegistry(const std::string §ion, Geometry & geometry);
|
|
void saveGeometryToRegistry(const std::string §ion, const Geometry & geometry);
|
|
}
|