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.
25 lines
427 B
25 lines
427 B
//
|
|
// 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
|
|
|