summaryrefslogtreecommitdiff
path: root/cad/vipec/patches/patch-ad
blob: e957fda0269e58c7f330d7d5fff74ffa1756aebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$NetBSD: patch-ad,v 1.3 2006/05/26 09:20:03 joerg Exp $

--- include/DataVector.h.orig	2006-05-26 08:16:56.000000000 +0000
+++ include/DataVector.h
@@ -34,6 +34,7 @@ public:
 
     DataVector();
     DataVector(uint Size);
+    DataVector(const DataVector& vector);
     virtual ~DataVector();
 
     DataVector& operator= (const DataVector& vector);
@@ -44,10 +45,6 @@ public:
     void addPoint(TComplex value);
 
 private:
-    DataVector(const DataVector& vector);
-    
-
-private:
     TComplex *vector_;
     uint vectorSize_;
     uint pointer_;