forked from mirror/openmw-tes3mp
17 lines
No EOL
240 B
C++
17 lines
No EOL
240 B
C++
#ifndef CSM_DOCUMENT_H
|
|
#define CSM_DOCUMENT_H
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document
|
|
{
|
|
Document (const Document&);
|
|
Document& operator= (const Document&);
|
|
|
|
public:
|
|
|
|
Document();
|
|
};
|
|
}
|
|
|
|
#endif |