Archived
1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
beats-sim/UserInformation.h

26 lines
427 B
C
Raw Normal View History

2013-03-25 16:36:52 +01:00
//
// UserInformation.h
// GravityBeats
//
// Created by Joshua Moerman on 2/19/13.
// Copyright (c) 2013 Vadovas. All rights reserved.
//
#ifndef GravityBeats_UserInformation_h
#define GravityBeats_UserInformation_h
template <typename T>
struct UserInformation {
template <typename... S>
UserInformation(S... args)
: information(args...)
{}
T information;
};
template <>
struct UserInformation<void> {};
#endif