~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/algorithm/sha1.h

  • Committer: Monty Taylor
  • Date: 2011-03-15 16:10:15 UTC
  • mfrom: (2235.3.1 staging)
  • Revision ID: mordred@inaugust.com-20110315161015-qceggirmf3cct7cw
Merge in libdrizzle install changes, doc changes and some header
refactoring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * @brief SHA1 Declarations
8
8
 */
9
9
 
10
 
#ifndef DRIZZLED_ALGORITHM_SHA1_H
11
 
#define DRIZZLED_ALGORITHM_SHA1_H
 
10
#pragma once
12
11
 
13
12
#include <stdint.h>
14
13
#include <sys/types.h>
15
14
#include <string.h>
16
15
 
17
 
#include "drizzled/visibility.h"
 
16
#include <drizzled/visibility.h>
18
17
 
19
18
namespace drizzled
20
19
{
57
56
 
58
57
} /* namespace drizzled */
59
58
 
60
 
#endif /* DRIZZLED_ALGORITHM_SHA1_H */