-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathn2.cpp
More file actions
39 lines (32 loc) · 634 Bytes
/
n2.cpp
File metadata and controls
39 lines (32 loc) · 634 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
/*
* =====================================================================================
*
* Filename: n2.cpp
*
* Description:
*
* Version: 1.0
* Created: 2017年10月12日 11时29分49秒
* Last Modified: 2017年10月12日 11时29分49秒
* Revision: none
* Compiler: gcc
*
* Author: zt (),
* Organization:
*
* =====================================================================================
*/
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include "n2.h"
namespace zt
{
B::B()
{
std::cout << "bbbb\n";
}
B::~B()
{
}
}