From e7cb9406b5dca1001b6da7069ec59ccd7b579b45 Mon Sep 17 00:00:00 2001 From: boufaras Date: Tue, 15 Mar 2011 13:38:05 +0000 Subject: [PATCH] protected attribut git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2195 331e1502-861f-0410-8da2-ba01fb791d7f --- branches/ParadisEO-GPU/src/cudaType/moCudaVector.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/branches/ParadisEO-GPU/src/cudaType/moCudaVector.h b/branches/ParadisEO-GPU/src/cudaType/moCudaVector.h index d692388d7..bf5d236ab 100644 --- a/branches/ParadisEO-GPU/src/cudaType/moCudaVector.h +++ b/branches/ParadisEO-GPU/src/cudaType/moCudaVector.h @@ -48,8 +48,6 @@ class moCudaVector: public EO { public: typedef ElemT ElemType; - ElemType * vect; - unsigned N; /** * Default constructor. @@ -166,6 +164,12 @@ public: } +protected: + + ElemType * vect; + unsigned N; + + }; #endif