摘要: test.h1 #ifndef _TEST_H_2 #define _TEST_H_3 4 void TestA();5 void TestB();6 7 #endiftest_a.cpp1 #include <stdio.h>2 #include "test.h"3 4 void TestA()5 {6 printf("TestA func\n");7 }test_b.cpp1 #include <stdio.h>2 #include "test.h"3 4 void TestB()5 {6 printf(& 阅读全文
posted @ 2011-11-15 12:51 吃吃户 阅读(27497) 评论(2) 推荐(2) 编辑