A simple Qt based browser with no bullshit that supports PKCS#11 tokens (such as the SuisseID).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
860 B

// ---------------------------------------------------------------------------
// Name: actTypeTags.h
// Product: cv act library
// Purpose: TypeTag<> and usibility forward declarations.
//
// Copyright: (c) 2010 cv cryptovision GmbH
// all rights reserved
// Licence: The conditions for the use of this software are regulated
// in the cv act library licence agreement.
//
// Autor: Markus Tesche
// Date: 09/10/2010
// ---------------------------------------------------------------------------
#ifndef ACT_TypeTags_h
#define ACT_TypeTags_h
namespace act
{
//
// TypeTag<>
template<typename TypeT>
struct TypeTag { typedef TypeT Type; };
//
// CloneFactory<>
template<typename Tag, typename P1 = void, typename P2 = void, typename P3 = void>
struct CloneFactory;
} // namespace act
#endif // ACT_TypeTags_h