forked from teamnwah/openmw-tes3coop
18 lines
No EOL
279 B
C++
18 lines
No EOL
279 B
C++
#ifndef CSM_DOC_DOCUMENT_H
|
|
#define CSM_DOC_DOCUMENT_H
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document
|
|
{
|
|
// not implemented
|
|
Document (const Document&);
|
|
Document& operator= (const Document&);
|
|
|
|
public:
|
|
|
|
Document();
|
|
};
|
|
}
|
|
|
|
#endif |