f902ee4071829be7f9ee9ebf105cf6bdcd162e87
[shibboleth/cpp-xmltooling.git] / xmltooling / signature / ContentReference.h
1 /*
2  *  Copyright 2001-2009 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 xmltooling/signature/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 <xmltooling/base.h>
27
28 class DSIGSignature;
29
30 namespace xmlsignature {
31     /**
32      * Interface for creating signature references based on application requirements.
33      */
34     class XMLTOOL_API ContentReference
35     {
36         MAKE_NONCOPYABLE(ContentReference);
37     public:
38         virtual ~ContentReference();
39
40         /**
41          * Given a native signature, asks the object to create the reference(s).
42          * 
43          * @param sig   native signature interface
44          */
45         virtual void createReferences(DSIGSignature* sig)=0;
46         
47     protected:
48         /** Default constructor. */
49         ContentReference();
50     };
51 };
52
53 #endif /* __xmltooling_sigref_h__ */