]> git.vomp.tv Git - vompclient.git/blob - recording.cc
Windows port
[vompclient.git] / recording.cc
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "recording.h"
22
23 Recording::Recording()
24 {
25   start = 0;
26   progName = NULL;
27   fileName = NULL;
28   index = -1;
29 }
30
31 Recording::~Recording()
32 {
33   if (progName) { delete[] progName; progName = NULL; }
34   if (fileName) { delete[] fileName; fileName = NULL; }
35   index = -1; // just in case
36 }
37
38 ULONG Recording::getStartTime() const
39 {
40   return start;
41 }
42
43 char* Recording::getProgName() const
44 {
45   return progName;
46 }
47
48 char* Recording::getFileName() const
49 {
50   return fileName;
51 }
52
53 void Recording::setStartTime(ULONG tstartTime)
54 {
55   start = tstartTime;
56 }
57
58 void Recording::setProgName(char* tProgName)
59 {
60   if (progName) delete[] progName;
61
62   progName = new char[strlen(tProgName) + 1];
63   if (progName) strcpy(progName, tProgName);
64 }
65
66 void Recording::setFileName(char* tFileName)
67 {
68   if (fileName) delete[] fileName;
69
70   fileName = new char[strlen(tFileName) + 1];
71   if (fileName) strcpy(fileName, tFileName);
72 }