forked from me115/design_patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProductB2.cpp
More file actions
26 lines (16 loc) · 438 Bytes
/
ProductB2.cpp
File metadata and controls
26 lines (16 loc) · 438 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
///////////////////////////////////////////////////////////
// ProductB2.cpp
// Implementation of the Class ProductB2
// Created on: 02-十月-2014 15:04:20
// Original author: colin
///////////////////////////////////////////////////////////
#include "ProductB2.h"
#include <iostream>
using namespace std;
ProductB2::ProductB2(){
}
ProductB2::~ProductB2(){
}
void ProductB2::eat(){
cout << "eat Product B2" << endl;
}