-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrite.cpp.2
More file actions
41 lines (37 loc) · 1.41 KB
/
write.cpp.2
File metadata and controls
41 lines (37 loc) · 1.41 KB
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
//////////////////////////////////////////////////////////////////////////////////////////////////////////
// write.cpp : demonstrate write package operations //
// ver 1.0 //
// Platform : Dell Inspiron 13 - Windows 10, Visual Studio 2017 //-|_
// Language : C++ using the facilities of the standard C++ Libraries //-| <----------Requirement 1---------->
// Application : Project 2 [Software Repository Testbed] Object Oriented Design CSE-687 Spring'18 //
// Author : Sonal Patil, Syracuse University //
// spatil06@syr.edu (408)-416-6291 //
//////////////////////////////////////////////////////////////////////////////////////////////////////////
/*
* Module Operations:
* ==================
* This package defines class write which provides means to I/O functionality
*
* Public Interface:
* =================
*
* Required Files:
* ===============
* write.h
*
* Build Command:
* ==============
*
* Maintenance History:
* ====================
* ver 1.0 : 06 March 18
* - first release
*/
#inlcude <iostream>
#include "write.h"
/*<-----------------------------------Test Stub-------------------------------------->*/
#ifdef TEST_WRITE
int main() {
std::cout << "Write package";
}
#endif