0

ヘッダーファイルがありますtest.h

 #ifndef __visibilty_test__test__

 #define __visibilty_test__test__

 #include <iostream>

using namespace std;

class test{

public:

    void print(string s);
};

 #endif 

test.mm

 #include "test.h"

using namespace std;


void test:: print(string s){

    cout << s << endl;

}

AppDelegate.miOSアプリケーションのファイルで印刷機能を呼び出したいと思います。誰でも私を助けることができますか?

前もって感謝します

4

2 に答える 2