Posting a question? (pointless test)
I've tried twice to post a question and get a server error page both times. I clicked the "notify us" link.
This is a test to see if I can do it with a short post.
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
class Gizmo
{
public:
virtual void Switch() ;
virtual int Loop(unsigned long ms)=0;
};
class AGizmo: public Gizmo
{
public:
virtual void Switch() ;
virtual int Loop(unsigned long ms);
};
| |
Topic archived. No new replies allowed.