T O P I C R E V I E W |
devarni |
Posted - Jan 27 2008 : 07:26:30 AM Build 10.4 1626
widget.h class Test { Test(); void Blah(){} };
class Widget { Widget(); }
test.cpp Test::Test() { }
widget.cpp Widget::Widget() { }
Moving implemention of member Blah() from class Test will move the implementation to widget.cpp instead of test.cpp |
1 L A T E S T R E P L I E S (Newest First) |
feline |
Posted - Jan 28 2008 : 08:02:36 AM In general, how is VA to know that you want to place the function implementation into the "wrong" cpp file?
The code is being placed into the matching cpp file, the one that alt-o will take you to. While this may not be perfect, it is logical. |
|
|