41 lines
1.3 KiB
C++
41 lines
1.3 KiB
C++
// Filename: checksumHashGenerator.h
|
|
// Created by: drose (14May01)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef CHECKSUMHASHGENERATOR_H
|
|
#define CHECKSUMHASHGENERATOR_H
|
|
|
|
#include "pandabase.h"
|
|
|
|
#include "hashGeneratorBase.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : ChecksumHashGenerator
|
|
// Description : This is a specific kind of HashGenerator that simply
|
|
// adds up all of the ints. Nothing fancy, and pretty
|
|
// quick.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDAEXPRESS ChecksumHashGenerator : public HashGeneratorBase {
|
|
public:
|
|
INLINE void add_int(long num);
|
|
INLINE void add_bool(bool flag);
|
|
INLINE void add_fp(float num, float threshold);
|
|
INLINE void add_fp(double num, double threshold);
|
|
INLINE void add_pointer(void *ptr);
|
|
void add_string(const string &str);
|
|
};
|
|
|
|
#include "checksumHashGenerator.I"
|
|
|
|
#endif
|