-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathn1.cpp
More file actions
47 lines (39 loc) · 725 Bytes
/
n1.cpp
File metadata and controls
47 lines (39 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* =====================================================================================
*
* Filename: n1.cpp
*
* Description:
*
* Version: 1.0
* Created: 2017年10月12日 11时25分57秒
* Last Modified: 2017年10月12日 11时25分57秒
* Revision: none
* Compiler: gcc
*
* Author: zt (),
* Organization:
*
* =====================================================================================
*/
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include "n1.h"
#include "n2.h"
namespace zt
{
A::A()
{
std::cout << "asdf\n";
}
A::~A()
{
}
}
int main ( int argc, char* argv[] )
{
zt::A a;
zt::B b;
return 0;
}