OSDN Git Service

[dennco] integrated engine related changes from denncoCreator
[dennco/dennco.git] / Source / TKAxon.h
index a5e941c..a55b620 100644 (file)
@@ -34,8 +34,8 @@ public:
        TKAxon(TKCell *theOwner);
     virtual ~TKAxon();
        TKAxonTerminal* addTerminal();
-    TKCell*         getOwner() { return mOwner; }
-    float           getValue();
+    TKCell*         getOwner() const { return mOwner; }
+    float           getValue() const;
     void            setValue(float value);
 
 protected:
@@ -44,7 +44,7 @@ protected:
 private:
     float  mValue;
     TKCell *mOwner;
-    TKLock mLock;
+    mutable TKLock mLock;
 };
 
 #endif