Skip to content
Snippets Groups Projects
Commit c5de5f8d authored by Francois Keith's avatar Francois Keith Committed by Francois Keith
Browse files

Win32: Correct the importation/exportation of symbols

parent d55ea905
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@
namespace dynamicgraph {
namespace command {
class Value;
class EitherType {
class DYNAMIC_GRAPH_DLLEXPORT EitherType {
public:
EitherType(const Value& value);
~EitherType();
......@@ -92,9 +92,9 @@ namespace dynamicgraph {
static std::string typeName(Type type);
/// Output in a stream
friend std::ostream& operator<<(std::ostream& os, const Value& value);
DYNAMIC_GRAPH_DLLEXPORT friend std::ostream& operator<<(std::ostream& os, const Value& value);
public:
friend class EitherType;
DYNAMIC_GRAPH_DLLEXPORT friend class EitherType;
bool boolValue() const;
unsigned unsignedValue() const;
int intValue() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment