moss-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Moss-devel] CVS: moss/colpatik/src DeviceInterrupt.cxx,NONE,1.1 DeviceP


From: Manfred Morgner <address@hidden>
Subject: [Moss-devel] CVS: moss/colpatik/src DeviceInterrupt.cxx,NONE,1.1 DevicePoll.cxx,NONE,1.1 DeviceQuery.cxx,NONE,1.1 Device.cxx,1.1,1.2 Makefile.am,1.2,1.3
Date: Fri, 03 May 2002 18:49:37 -0400

Update of /cvsroot/moss//moss/colpatik/src
In directory subversions:/tmp/cvs-serv1020/src

Modified Files:
        Device.cxx Makefile.am 
Added Files:
        DeviceInterrupt.cxx DevicePoll.cxx DeviceQuery.cxx 
Log Message:
added some device handler classes (frames only)


--- NEW FILE ---
/***************************************************************************
                                                         DeviceInterrupt.cxx
                                                         -------------------
    begin                : Fri Mar 3 2000
    copyright            : (C) 1993..2000 by Manfred Morgner
    email                : address@hidden
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *                                                                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place Suite 330,                                            *
 *   Boston, MA  02111-1307, USA.                                          *
 *                                                                         *
 ***************************************************************************/

#include <string>

#include "DeviceInterrupt.h"

using namespace dsia

CDeviceInterrupt::CDeviceInterrupt(std::string sURI = "")
  : CDevice(sURI)
  {
  } // CDeviceInterrupt::CDeviceInterrupt(std::string sURI = "")

CDeviceInterrupt::~CDeviceInterrupt()
  {
  } // CDeviceInterrupt::~CDeviceInterrupt()
 

--- NEW FILE ---
/***************************************************************************
                                                                DevicePoll.cxx
                                                         -------------------
    begin                : Fri Mar 3 2000
    copyright            : (C) 1993..2000 by Manfred Morgner
    email                : address@hidden
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *                                                                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place Suite 330,                                            *
 *   Boston, MA  02111-1307, USA.                                          *
 *                                                                         *
 ***************************************************************************/

#include <string>

#include "DevicePoll.h"

using namespace dsia

CDevicePoll::CDevicePoll(std::string sURI = "")
  : CDevice(sURI)
  {
  } // CDevicePoll::CDevicePoll(std::string sURI = "")

CDevicePoll::~CDevicePoll()
  {
  } // CDevicePoll::~CDevicePoll()
 

--- NEW FILE ---
/***************************************************************************
                                                           DeviceQuery.cxx
                                                         -------------------
    begin                : Fri Mar 3 2000
    copyright            : (C) 1993..2000 by Manfred Morgner
    email                : address@hidden
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *                                                                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place Suite 330,                                            *
 *   Boston, MA  02111-1307, USA.                                          *
 *                                                                         *
 ***************************************************************************/

#include <string>

#include "DeviceQuery.h"

using namespace dsia

CDeviceQuery::CDeviceQuery(std::string sURI = "")
  : CDevice(sURI)
  {
  } // CDeviceQuery::CDeviceQuery(std::string sURI = "")

CDeviceQuery::~CDeviceQuery()
  {
  } // CDeviceQuery::~CDeviceQuery()
 

Index: Device.cxx
===================================================================
RCS file: /cvsroot/moss//moss/colpatik/src/Device.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Device.cxx  3 May 2002 22:13:04 -0000       1.1
--- Device.cxx  3 May 2002 22:49:35 -0000       1.2
***************
*** 1,4 ****
  /***************************************************************************
!                                                                device.cxx
                                                         -------------------
      begin                : Fri Mar 3 2000
--- 1,4 ----
  /***************************************************************************
!                                                                Device.cxx
                                                         -------------------
      begin                : Fri Mar 3 2000
***************
*** 30,39 ****
  #include <string>
  
  using namespace dsia
  
! CDevice::CDevice(std::sURI = "")
    {
    m_sURI = sURI;
!   } // CDevice::CDevice(std::sURI = "")
  
  CDevice::~CDevice()
--- 30,41 ----
  #include <string>
  
+ #include "Device.h"
+ 
  using namespace dsia
  
! CDevice::CDevice(std::string sURI = "")
    {
    m_sURI = sURI;
!   } // CDevice::CDevice(std::string sURI = "")
  
  CDevice::~CDevice()

Index: Makefile.am
===================================================================
RCS file: /cvsroot/moss//moss/colpatik/src/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Makefile.am 3 May 2002 22:13:04 -0000       1.2
--- Makefile.am 3 May 2002 22:49:35 -0000       1.3
***************
*** 5,9 ****
  CFLAGS=-D_REENTRANT
  
! colpatik_SOURCES = main.cxx Device.cxx
  colpatik_LIBFLAGS = -lstdc++ 
  
--- 5,9 ----
  CFLAGS=-D_REENTRANT
  
! colpatik_SOURCES = main.cxx Device.cxx DevicePoll.cxx DeviceQuery.cxx 
DeviceInterrupt.cxx
  colpatik_LIBFLAGS = -lstdc++ 
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]