Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
6586e7a6
Commit
6586e7a6
authored
Apr 19, 2011
by
Pavel Vainerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Небольшая чистка от лишнего
parent
fd2544f4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
63 deletions
+5
-63
libuniset.spec
conf/libuniset.spec
+4
-1
Makefile.am
extensions/UNet2/Makefile.am
+1
-1
RepositoryAgent.h
include/RepositoryAgent.h
+0
-61
No files found.
conf/libuniset.spec
View file @
6586e7a6
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
Name: libuniset
Name: libuniset
Version: 1.0
Version: 1.0
Release: alt1
8
Release: alt1
9
Summary: UniSet - library for building distributed industrial control systems
Summary: UniSet - library for building distributed industrial control systems
License: GPL
License: GPL
Group: Development/C++
Group: Development/C++
...
@@ -191,6 +191,9 @@ rm -f %buildroot%_libdir/*.la
...
@@ -191,6 +191,9 @@ rm -f %buildroot%_libdir/*.la
%exclude %_pkgconfigdir/libUniSet.pc
%exclude %_pkgconfigdir/libUniSet.pc
%changelog
%changelog
* Tue Apr 19 2011 Pavel Vainerman <pv@altlinux.ru> 1.0-alt19
- a little cleaning
* Tue Apr 19 2011 Pavel Vainerman <pv@altlinux.ru> 1.0-alt18
* Tue Apr 19 2011 Pavel Vainerman <pv@altlinux.ru> 1.0-alt18
- add unet2-tester
- add unet2-tester
...
...
extensions/UNet2/Makefile.am
View file @
6586e7a6
...
@@ -32,4 +32,4 @@ pkgconfigdir = $(libdir)/pkgconfig
...
@@ -32,4 +32,4 @@ pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA
=
libUniSetUNet2.pc
pkgconfig_DATA
=
libUniSetUNet2.pc
all-local
:
all-local
:
ln
-sf
../U
DPExchange
/
$(devel_include_HEADERS)
../include
ln
-sf
../U
Net2
/
$(devel_include_HEADERS)
../include
include/RepositoryAgent.h
deleted
100644 → 0
View file @
fd2544f4
/* This file is part of the UniSet project
* Copyright (c) 2002 Free Software Foundation, Inc.
* Copyright (c) 2002 Pavel Vainerman
*
* 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.
*/
// --------------------------------------------------------------------------
/*! \file
* \brief Реализация RepositoryAgent
* \author Pavel Vainerman
*/
// --------------------------------------------------------------------------
#ifndef RepositoryAgent_H_
#define RepositoryAgent_H_
//---------------------------------------------------------------------------
#include "RepositoryAgent_i.hh"
#include "BaseProcess_i.hh"
#include "BaseProcess.h"
#include "UniSetTypes.h"
#include "ObjectIndex.h"
//----------------------------------------------------------------------------------------
/*! \class RepositoryAgent
*/
class
RepositoryAgent
:
public
POA_RepositoryAgent_i
,
public
BaseProcess
{
public
:
RepositoryAgent
(
ObjectId
id
,
const
UniSetTypes
::
ObjectInfo
*
pObjectsMap
);
~
RepositoryAgent
();
// virtual void registration(const char* name, ::CORBA::Object_ptr ref);
// virtual void unregistration(const char* name, ::CORBA::Object_ptr ref);
virtual
CORBA
::
Object_ptr
resolve
(
const
char
*
name
);
virtual
CORBA
::
Object_ptr
resolveid
(
UniSetTypes
::
ObjectId
id
);
virtual
void
execute
();
protected
:
RepositoryAgent
();
ObjectIndex
oind
;
private
:
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment