File: vawinfo.cpp

package info (click to toggle)
libv1.22 1.22-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 7,380 kB
  • ctags: 9,765
  • sloc: cpp: 58,097; ansic: 6,814; makefile: 1,597; java: 515; sh: 24
file content (31 lines) | stat: -rw-r--r-- 1,131 bytes parent folder | download | duplicates (2)
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
//===============================================================
// vawinfo.cxx - vAppWinInfo utility class for tracking windows
//
// Copyright (C) 1995.1996, 1997, 1998  Bruce E. Wampler
//
// This file is part of the V C++ GUI Framework, and is covered
// under the terms of the GNU Library General Public License,
// Version 2. This library has NO WARRANTY. See the source file
// vapp.cxx for more complete information about license terms.
//===============================================================

#include <v/vwin32.h>		// for Win 32 stuff
#include <v/vawinfo.h>
#include <string.h>

//=======================>>> vAppWinInfo::vAppWinInfo <<<===================
  vAppWinInfo::vAppWinInfo(VCONST char* name, VCONST void* ptr)
  {
    SysDebug1(Constructor,"vAppWinInfo::vAppWinInfo(%s) - constructor\n",name);

    _infoName = new char[strlen(name)+1];
    strcpy(_infoName, name);
    _ptr = ptr;
  }

//=======================>>> vAppWinInfo::~vAppWinInfo <<<===================
  vAppWinInfo::~vAppWinInfo()
  {
    SysDebug(Destructor,"vAppWinInfo::~vAppWinInfo() - desstructor\n");
    delete [] _infoName;
  }