Created
August 7, 2011 12:45
-
-
Save benben/1130344 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <typename T> | |
class TextInput | |
{ | |
public: | |
TextInput(float* _x, float* _y, string _name, T* _value, bool* _bProcessed, bool* _bIsNodeActive); | |
... | |
} | |
typedef boost::shared_ptr<ds::TextInput<float> > TextInputPtr; | |
TextInputPtr t(new TextInput<float>(&x, &y, name, &value, &bProcessed, &bIsActive)); //doesn't work |
Author
benben
commented
Aug 7, 2011
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment