-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathWinAgentSettings.cpp
39 lines (31 loc) · 1.21 KB
/
WinAgentSettings.cpp
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
//====================================================================================
// Open Computer and Software Inventory Next Generation
// Copyright (C) 2010 OCS Inventory NG Team. All rights reserved.
// Web: http://www.ocsinventory-ng.org
// This code is open source and may be copied and modified as long as the source
// code is always made freely available.
// Please refer to the General Public Licence V2 http://www.gnu.org/ or Licence.txt
//====================================================================================
// WinAgentSettings.cpp: implementation of the CWinAgentSettings class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "ocs_deploy_tool.h"
#include "AgentSettings.h"
#include "WinAgentSettings.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CWinAgentSettings::CWinAgentSettings()
{
m_uOS = AGENT_OS_WINDOWS;
m_csAgentDirectory = DEFAULT_WIN_AGENT_DIRECTORY;
}
CWinAgentSettings::~CWinAgentSettings()
{
}