Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
e140e427
Commit
e140e427
authored
Aug 20, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vector moved to COLLECTOR
parent
1d9516c0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
43 deletions
+0
-43
base_struct.h
include/base_struct.h
+0
-43
No files found.
include/base_struct.h
View file @
e140e427
...
...
@@ -5,8 +5,6 @@
#ifndef BASE_STRUCT_H
#define BASE_STRUCT_H
#include <vector>
#if defined(DEBUG)
#include <iostream> // needed for Show()
...
...
@@ -97,51 +95,10 @@ class EDA_BaseStruct;
*/
class
INSPECTOR
{
private
:
/// A place to hold collected objects without taking ownership of their memory.
std
::
vector
<
EDA_BaseStruct
*>
list
;
public
:
virtual
~
INSPECTOR
()
{
// empty the list so that ~list() does not try and delete all
// the objects that it holds. list is not the owner of such objects.
Empty
();
}
/**
* Function GetCount
* returns the number of objects in the list
*/
int
GetCount
()
const
{
return
list
.
size
();
}
/**
* Function Empty
* sets the list to empty
*/
void
Empty
()
{
list
.
clear
();
}
/**
* Function operator[]
* is used for read only access and returns the object at index ndx.
* @param ndx The index into the list.
* @return EDA_BaseStruct* - or something derived from it, or NULL.
*/
EDA_BaseStruct
*
operator
[](
int
ndx
)
const
{
if
(
(
unsigned
)
ndx
<
(
unsigned
)
GetCount
()
)
return
list
[
ndx
];
return
NULL
;
}
...
...
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