Update copyright.
[shibboleth/cpp-xmltooling.git] / xmltooling / signature / ContentReference.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file ContentReference.h
19  * 
20  * Interface for creating signature references 
21  */
22
23 #if !defined(__xmltooling_sigref_h__) && !defined(XMLTOOLING_NO_XMLSEC)
24 #define __xmltooling_sigref_h__
25
26 #include <vector>
27 #include <xsec/dsig/DSIGSignature.hpp>
28
29 #if defined (_MSC_VER)
30     #pragma warning( push )
31     #pragma warning( disable : 4250 4251 )
32 #endif
33
34 namespace xmlsignature {
35
36     /**
37      * Interface for creating signature references based on application requirements.
38      */
39     class XMLTOOL_API ContentReference
40     {
41         MAKE_NONCOPYABLE(ContentReference);
42     public:
43         virtual ~ContentReference() {}
44
45         /**
46          * Given a native signature, asks the object to create the reference(s).
47          * 
48          * @param sig   native signature interface
49          */
50         virtual void createReferences(DSIGSignature* sig)=0;
51         
52     protected:
53         ContentReference() {}
54     };
55
56 };
57
58 #if defined (_MSC_VER)
59     #pragma warning( pop )
60 #endif
61
62 #endif /* __xmltooling_sigref_h__ */