15 lines
242 B
C++
15 lines
242 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include "cmmodlib_export.h"
|
||
|
|
||
|
class CMMODLIB_EXPORT cmModClass {
|
||
|
private:
|
||
|
std::string str;
|
||
|
public:
|
||
|
cmModClass(std::string foo);
|
||
|
|
||
|
std::string getStr() const;
|
||
|
std::string getOther() const;
|
||
|
};
|