X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=inline;f=kernel%2Fsrc%2FbbtkBlackBoxOutputConnector.h;h=52b48237023d0ddbf3bf3fc04af6b3f5621728c4;hb=2b8d8f686974ab38c9ffcf0f88dd533b01b68e84;hp=dab12742c24cece2d395837a7b46d92bb99e3fd6;hpb=a26195c366a89795288009cf7e20f11afa494970;p=bbtk.git diff --git a/kernel/src/bbtkBlackBoxOutputConnector.h b/kernel/src/bbtkBlackBoxOutputConnector.h index dab1274..52b4823 100644 --- a/kernel/src/bbtkBlackBoxOutputConnector.h +++ b/kernel/src/bbtkBlackBoxOutputConnector.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbtkBlackBoxOutputConnector.h,v $ Language: C++ - Date: $Date: 2008/01/22 15:02:00 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/04/22 14:30:25 $ + Version: $Revision: 1.3 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -46,11 +46,12 @@ namespace bbtk void UnsetConnection(Connection* c); //IOStatus Update(); void SetModifiedStatus(); - const std::vector& GetConnectionVector() const { return mConnection; } + typedef std::vector ConnectionVector; + const ConnectionVector& GetConnectionVector() const { return mConnection; } private: /// The vector of output connections - std::vector mConnection; + ConnectionVector mConnection; /// The status of the output //IOStatus mStatus; };