C++ クラスがあり、いくつかの C ファイルでコンパイルしています。
C++ で定義されている関数を、実際には C++ クラスで呼び出したいのですが、どうすればよいですか?
私が言っていることを示す次の宣言: 構文エラーがある可能性があります:
serial_comm.cpp
class MyClass {
void sendCommandToSerialDevice(int Command, int Parameters, int DeviceId) {
//some codes that write to serial port.
}
}
外部.c
int main(int argc, char ** argv) {
//what am I going to write here?
}